Skip to main content
GET
/
v1
/
customers
/
{id}
/
entitlements
Resolve customer entitlements
curl --request GET \
  --url https://api.hyperline.co/v1/customers/{id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "entitlements": {
    "seats": {
      "value": 10,
      "source": "product"
    },
    "sso": {
      "value": true,
      "source": "customer"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.hyperline.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

at
string<date-time>

Resolution date.

Example:

"2024-12-20T16:04:11Z"

Response

200 - application/json
entitlements
object
required

Resolved entitlements keyed by feature code.

Example:
{
"seats": { "value": 10, "source": "product" },
"sso": { "value": true, "source": "customer" }
}